home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue62 / WStrings / demomain.pas < prev    next >
Pascal/Delphi Source File  |  2000-08-15  |  382b  |  27 lines

  1. unit DemoMain;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls, WideLabel;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     WideLabel1: TWideLabel;
  12.     WideLabel2: TWideLabel;
  13.   private
  14.     { Private declarations }
  15.   public
  16.     { Public declarations }
  17.   end;
  18.  
  19. var
  20.   Form1: TForm1;
  21.  
  22. implementation
  23.  
  24. {$R *.DFM}
  25.  
  26. end.
  27.